home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 September / Chip_2001-09_cd1.bin / sharewar / webscrip / webscripter4s.exe / {app} / Includes / jsJukeBox.ob < prev    next >
Encoding:
Text File  |  2001-07-11  |  491 b   |  20 lines

  1. //begin_lib <!-- Begin External JavaScript -- DO NOT REMOVE THIS LINE -->
  2.  
  3. function jsJukeBox(){
  4. this.SelObject = null;
  5. this.Play = jb_Play;
  6. }
  7.  
  8. function jb_Play(){
  9.           if(this.SelObject){
  10.           var jb_file = this.SelObject.options[this.SelObject.selectedIndex].value;
  11.                 if(jb_file){
  12.               window.location = jb_file;
  13.                }
  14.          }else{
  15.          alert("Error: SelObject property value is invalid!");
  16.          }    
  17. }
  18.  
  19. //end_lib <!-- End External JavaScript -- DO NOT REMOVE THIS LINE -->
  20.